home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / pvm34b3.zip / pvm34b3 / pvm3 / lib / cshrc.stub < prev    next >
Text File  |  1997-07-22  |  849b  |  31 lines

  1.  
  2. #
  3. # append this file to your .cshrc to set path according to machine type.
  4. # you may wish to use this for your own programs (edit the last part to
  5. # point to a different directory f.e. ~/bin/_$PVM_ARCH.
  6. #
  7. if (! $?PVM_ROOT) then
  8.     if (-d ~/pvm3) then
  9.         setenv PVM_ROOT ~/pvm3
  10.     else
  11.         echo "Warning - PVM_ROOT not defined"
  12.         echo "To use PVM, define PVM_ROOT and rerun your .cshrc"
  13.     endif
  14. endif
  15.  
  16. if ($?PVM_ROOT) then
  17.     setenv PVM_ARCH `$PVM_ROOT/lib/pvmgetarch`
  18. #
  19. # uncomment one of the following lines if you want the PVM commands directory
  20. # to be added to your shell path.
  21. #
  22. #    set path=($path $PVM_ROOT/lib)            # generic
  23. #    set path=($path $PVM_ROOT/lib/$PVM_ARCH)  # arch-specific
  24. #
  25. # uncomment the following line if you want the PVM executable directory
  26. # to be added to your shell path.
  27. #
  28. #    set path=($path $PVM_ROOT/bin/$PVM_ARCH)
  29. endif
  30.  
  31.